home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>eMule</title>
- </head>
- <body style="background-image:url(images/about.gif); background-attachment:fixed; background-repeat:no-repeat; background-position: center center;" onresize="resize();">
- <form action="login.emule" id="loginform" method="post">
- <a id="tx_username" style="font-size: x-small;position:absolute;">Username</a>
- <input name="in_username" type="text" style="position:absolute;border: solid, 1, black; font-size: xx-small;" size="20" maxlength="255"/>
- <a id="tx_password" style="font-size: x-small;position:absolute;">Password</a>
- <input name="in_password" type="password" style="border: solid, 1, black; font-size: xx-small;position:absolute;" size="20" maxlength="255"/>
- <input id="bt_login" type="submit" style="border: solid, 1, black; font-size: xx-small;position:absolute;" value="Login"/>
- </form>
- </body>
- </html>
- <script>
- resize();
- function resize()
- {
- wW=document.body.clientWidth;
- wH=document.body.clientHeight;
-
- tx_username.style.left=wW/2-170;
- tx_username.style.top=wH/2+140;
- document.getElementsByName("in_username")[0].style.left=wW/2-170;
- document.getElementsByName("in_username")[0].style.top=wH/2+160;
-
- tx_password.style.left=wW/2-10;
- tx_password.style.top=wH/2+140;
- document.getElementsByName("in_password")[0].style.left=wW/2-10;
- document.getElementsByName("in_password")[0].style.top=wH/2+160;
-
- document.getElementById("bt_login").style.left=wW/2+130;
- document.getElementById("bt_login").style.top=wH/2+158;
- }
- </script>